home *** CD-ROM | disk | FTP | other *** search
- HERK(3F) Last changed: 11-2-98
-
-
- NNAAMMEE
- CCHHEERRKK, ZZHHEERRKK - Performs Hermitian rank _k update of a complex Hermitian
- matrix
-
- SSYYNNOOPPSSIISS
- Complex
-
- CCAALLLL CCHHEERRKK ((_u_p_l_o,, _t_r_a_n_s,, _n,, _k,, _a_l_p_h_a,, _a,, _l_d_a,, _b_e_t_a,, _c,, _l_d_c))
-
- Double complex
-
- CCAALLLL ZZHHEERRKK ((_u_p_l_o,, _t_r_a_n_s,, _n,, _k,, _a_l_p_h_a,, _a,, _l_d_a,, _b_e_t_a,, _c,, _l_d_c))
-
- IIMMPPLLEEMMEENNTTAATTIIOONN
- IRIX systems
-
- DDEESSCCRRIIPPTTIIOONN
- These routines perform a Hermitian rank _k update of a complex
- Hermitian matrix.
-
- They perform one of the following Hermitian rank _k operations:
- H
- C <- alpha AA + beta C
- H
- C <- alpha A A + beta C
-
- where the following is true:
-
- * alpha and beta are scalars;
-
- * _C is an _n-by-_n Hermitian matrix;
-
- * _A is an _n-by-_k matrix in the first operation listed previously, and
- a _k-by-_n matrix in the second;
- _H
- * and _A is the conjugate transpose of _A.
-
- These routines have the following arguments:
-
- _u_p_l_o Character*1. (input)
- Specifies whether the upper or lower triangular part of
- array _c is referenced, as follows:
-
- _u_p_l_o = 'U' or 'u': only the upper triangular part of _c is
- referenced.
- _u_p_l_o = 'L' or 'l': only the lower triangular part of _c is
- referenced.
-
- _t_r_a_n_s Character*1. (input)
- Specifies the operation to be performed, as follows:
- _H
- _t_r_a_n_s = 'N' or 'n': _C <- _a_l_p_h_a _A_A + _b_e_t_a _C
-
- _H
- _t_r_a_n_s = 'C' or 'c': _C <- _a_l_p_h_a _A _A + _b_e_t_a _C
-
- _n Integer. (input)
- Specifies the order of matrix _C. _n must be >= 0.
-
- _k Integer. (input)
-
- On entry with _t_r_a_n_s = 'N' or 'n', _k specifies the number of
- columns of matrix _A.
- On entry with _t_r_a_n_s = 'C' or 'c', _k specifies the number of
- rows of matrix _A.
-
- _k must be >= 0.
-
- _a_l_p_h_a First scalar factor. (input)
- CCHHEERRKK: Real.
- ZZHHEERRKK: Double precision.
-
- _a Array of dimension (_l_d_a,_k_a). (input)
- CCHHEERRKK: Complex array.
- ZZHHEERRKK: Double complex array.
- When _t_r_a_n_s = 'N' or 'n', _k_a is _k; otherwise, it is _n.
- Contains matrix _A.
-
- Before entry with _t_r_a_n_s = 'N' or 'n', the leading _n-by-_k
- part of array _a must contain matrix _A; otherwise, the
- leading _k-by-_n part of array _a must contain matrix _A.
-
- _l_d_a Integer. (input)
- Specifies the first dimension of _a as declared in the
- calling program. If _t_r_a_n_s = 'N' or 'n', _l_d_a >= MMAAXX(1,_n);
- otherwise, _l_d_a >= MMAAXX(1,_k).
-
- _b_e_t_a Second scalar factor. (input)
- CCHHEERRKK: Real.
- ZZHHEERRKK: Double precision.
-
- _c Array of dimension (_l_d_c,_n). (input and output)
- CCHHEERRKK: Complex array.
- ZZHHEERRKK: Double complex array.
-
- Contains matrix _C. Before entry with _u_p_l_o = 'U' or 'u', the
- leading _n-by-_n upper triangular part of array _c must contain
- the upper triangular part of the Hermitian matrix. The
- strictly lower triangular part of _c is not referenced. On
- exit, the upper triangular part of the updated matrix
- overwrites the upper triangular part of array _c.
-
- Before entry with _u_p_l_o = 'L' or 'l', the leading _n-by-_n
- lower triangular part of array _c must contain the lower
- triangular part of the Hermitian matrix. The strictly upper
- triangular part of _c is not referenced. On exit, the lower
- triangular part of the updated matrix overwrites the lower
- triangular part of array _c.
-
- The imaginary parts of the diagonal elements need not be set
- and are assumed to be 0. On exit, they are set to 0.
-
- _l_d_c Integer. (input)
- Specifies the first dimension of _c as declared in the
- calling program. _l_d_c >= MMAAXX(1,_n).
-
- NNOOTTEESS
- CCHHEERRKK/ZZHHEERRKK is a Level 3 Basic Linear Algebra Subprogram (Level 3
- BLAS).
-
- SSEEEE AALLSSOO
- SSYYRRKK(3F)
-
- This man page is available only online.
-